76ddf9b353da123d40aca4f8b143d64846e7d6a3,lib/QMBForm/src/main/java/com/quemb/qmbform/view/FormCheckFieldCell.java,FormCheckFieldCell,update,#,44
Before Change
String title = getFormItemDescriptor().getTitle();
mCheckBox.setText(title);
mCheckBox.setEnabled(!getRowDescriptor().getDisabled());
Value<Boolean> value = (Value<Boolean>) getRowDescriptor().getValue();
if (value != null) {
After Change
String title = getFormItemDescriptor().getTitle();
mCheckBox.setText(title);
if (getRowDescriptor().getDisabled())
{
mCheckBox.setEnabled(false);
setTextColor(mCheckBox, CellDescriptor.COLOR_VALUE_DISABLED);
}
else
mCheckBox.setEnabled(true);
Value<Boolean> value = (Value<Boolean>) getRowDescriptor().getValue();
if (value != null) {